home *** CD-ROM | disk | FTP | other *** search
Makefile | 1989-09-06 | 531 b | 34 lines |
- # Makefile for minix-ST gcc
- #
- CC = mgcc
- CFLAGS = -O -mshort
- LFLAGS = -mshort -s -v
- ALL = exercise tputc tprintf tfwrite texit
- #
- all : $(ALL)
- timing: tputc tprintf tfwrite texit
-
- #
- exercise: exercise.o
- $(CC) $(LFLAGS) -o exercise exercise.o
- #
- #
- texit: texit.o
- $(CC) $(LFLAGS) -o texit texit.o
- #
- tputc: tputc.o
- $(CC) $(LFLAGS) -o tputc tputc.o
- #
- tprintf: tprintf.o
- $(CC) $(LFLAGS) -o tprintf tprintf.o
- #
- tfwrite: tfwrite.o
- $(CC) $(LFLAGS) -o tfwrite tfwrite.o
- #
-
- clean:
- rm -f *.o
-
- realclean : clean
- rm -f $(ALL) report core
-